[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  LOCAL             Inline assignment clarification.

  Clipper Version  1.29 dtd 04/15/91.

  Clarification:

  Inline assignments of the following form:

     LOCAL a := b := c:= 0

  result in LOCAL a and PRIVATE b and c. Use:
     LOCAL a, b, c
     a := b := c := 0

  Further, LOCAL x := 1, y := x + 2, z := y + 4  will cause a run-time
  error: BASE/1081 Argument Error: +. Use:
     LOCAL x, y, z
     x := 1; y := x + 2; z := y + 4   or

     LOCAL x := 1
     LOCAL y := x + 2
     LOCAL z := y + 4


This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson